home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-09-25 | 1.5 KB | 62 lines | [TEXT/CWIE] |
- // COPYRIGHT 1994 A.D. Software, All rights reserved
-
- // IMPLEMENTATION of queries
-
- // -------------------------------------------------------
- // d b Q u e r y B i n a r y
- // -------------------------------------------------------
- inline dbQueryClause::BinaryQueryOps dbQueryBinary::binaryOperator() const
- {
- return mBinOp;
- }
-
-
- inline const dbField* dbQueryBinary::lhsField() const
- {
- return mLhs->field();
- }
-
-
- // -------------------------------------------------------
- // d b Q u e r y B i n a r y C o m b o
- // -------------------------------------------------------
- inline dbQueryClause::QueryCombinatorialOps dbQueryBinaryCombo::binaryOperator() const
- {
- return mComboOp;
- }
-
-
- // -------------------------------------------------------
- // d b Q u e r y T r i n a r y
- // -------------------------------------------------------
- inline dbQueryClause::TrinaryQueryOps dbQueryTrinary::trinaryOperator() const
- {
- return mTrinOp;
- }
-
-
- inline const dbField* dbQueryTrinary::lhsField() const
- {
- return mLhs->field();
- }
-
-
- // -------------------------------------------------------
- // d b Q u e r y F i e l d
- // -------------------------------------------------------
- //inline const dbField* dbQueryField::field() const
- //{
- // return mfield;
- //}
-
-
- // -------------------------------------------------------
- // d b Q u e r y L i t e r a l S t r
- // -------------------------------------------------------
- inline const char* dbQueryLiteralStr::Str() const
- {
- return mStr;
- }
-
-
-